Object

User

A registered user of Burp Suite DAST.

Fields

username(): String!
The username of the user. For human users, this is the username with which they log in to the Burp Suite DAST web UI. For API users, this is just a name to help identify the user.

Example

Query
query GetUserWhoLastModifiedScanConfiguration {
  scan_configurations {
    last_modified_by {
      username
    }
  }
}
Result
{
  "data": {
    "scan_configurations": [
      {
        "last_modified_by": {
          "username": null
        }
      }
    ]
  }
}